home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / favori / favorit3.frm < prev    next >
Text File  |  1995-05-08  |  2KB  |  74 lines

  1. VERSION 2.00
  2. Begin Form Form3 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "About FAVORITE LAUNCHER"
  5.    ClientHeight    =   3420
  6.    ClientLeft      =   2565
  7.    ClientTop       =   1980
  8.    ClientWidth     =   4080
  9.    ControlBox      =   0   'False
  10.    Height          =   3825
  11.    Left            =   2505
  12.    LinkMode        =   1  'Source
  13.    LinkTopic       =   "Form3"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   3420
  17.    ScaleWidth      =   4080
  18.    Top             =   1635
  19.    Visible         =   0   'False
  20.    Width           =   4200
  21.    Begin CommandButton Command1 
  22.       Caption         =   "OK"
  23.       Height          =   495
  24.       Left            =   3240
  25.       TabIndex        =   2
  26.       Top             =   2520
  27.       Width           =   615
  28.    End
  29.    Begin PictureBox Picture1 
  30.       BorderStyle     =   0  'None
  31.       Height          =   615
  32.       Left            =   1800
  33.       Picture         =   FAVORIT3.FRX:0000
  34.       ScaleHeight     =   615
  35.       ScaleWidth      =   615
  36.       TabIndex        =   3
  37.       Top             =   1320
  38.       Width           =   615
  39.    End
  40.    Begin Label Label2 
  41.       Caption         =   "Written in Microsoft Visual Basic               Michael L. Wilson      July 8, 1991             CIS 71261,63"
  42.       Height          =   975
  43.       Left            =   360
  44.       TabIndex        =   1
  45.       Top             =   2280
  46.       Width           =   2055
  47.    End
  48.    Begin Label Label1 
  49.       Caption         =   "           About                    PROGRAM               LAUNCHER  "
  50.       FontBold        =   -1  'True
  51.       FontItalic      =   0   'False
  52.       FontName        =   "MS Sans Serif"
  53.       FontSize        =   9.75
  54.       FontStrikethru  =   0   'False
  55.       FontUnderline   =   0   'False
  56.       Height          =   855
  57.       Left            =   960
  58.       TabIndex        =   0
  59.       Top             =   120
  60.       Width           =   2295
  61.    End
  62. End
  63. 'user clicks "OK" on the "About" form
  64. '
  65. Sub Command1_Click ()
  66.  FORM3.VISIBLE = FALSE    'remove form from screen and memory
  67.  Unload FORM3
  68. End Sub
  69.  
  70. Sub Command1_LostFocus ()
  71.  FORM3.VISIBLE = False
  72. End Sub
  73.  
  74.